microkernel - определение. Что такое microkernel
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое microkernel - определение

KERNEL THAT PROVIDES FEWER SERVICES THAN A TRADITIONAL KERNEL
Nanokernel; Micro kernel; Picokernel; Μkernel; Mkernel; Microkernels
  • Structure of monolithic and microkernel-based operating systems, respectively
Найдено результатов: 8
microkernel         
¦ noun Computing a small modular part of an operating system kernel which implements its basic features.
microkernel         
<operating system> An approach to operating system design emphasising small modules that implement the basic features of the system kernel and can be flexibly configured. (1999-08-02)
Microkernel         
In computer science, a microkernel (often abbreviated as μ-kernel) is the near-minimum amount of software that can provide the mechanisms needed to implement an operating system (OS). These mechanisms include low-level address space management, thread management, and inter-process communication (IPC).
Artemis microkernel      
<operating system> A microkernel currently under development by Dave Hudson <dave@humbug.demon.co.uk>, scheduled for release under GPL in May 1995. It is targeted at embedded applications on Intel 80386, Intel 486 and Pentium based systems. (1995-03-29)
Taligent         
  • upright=1
DEFUNCT 1990S CORPORATION
CommonPoint; Pink (Macintosh); TalOS; Apple Pink; Opus (microkernel); Taligent Inc.; Taligent, Inc.
A company founded jointly by Apple and IBM in March 1992. HP announced in January, 1994 that it would buy a 15% stake in Taligent. They are working on an "object-oriented operating system", due to be finished sometime in 1995. However, various independent pieces of Taligent will likely appear to be used with other operating systems, e.g. IBM's WorkplaceOS. Pink is an older name for Taligent, dating back to work that Apple did before the formation of Taligent.
TALOS         
  • upright=1
DEFUNCT 1990S CORPORATION
CommonPoint; Pink (Macintosh); TalOS; Apple Pink; Opus (microkernel); Taligent Inc.; Taligent, Inc.
TALigent Object Services (Reference: Taligent), "Style: TalOS"
Talos         
  • upright=1
DEFUNCT 1990S CORPORATION
CommonPoint; Pink (Macintosh); TalOS; Apple Pink; Opus (microkernel); Taligent Inc.; Taligent, Inc.
In Greek mythology, Talos — also spelled Talus (;"Talos". Random House Webster's Unabridged Dictionary.
Self-modifying code         
SOURCE CODE THAT ALTERS ITS INSTRUCTIONS TO THE HARDWARE WHILE EXECUTING
Self modifying code; Runtime code generation; Run-time code generation; Synthesis kernel; Synthesis microkernel; Self-authoring code; Synthesis (kernel); Self-referential machine learning; Self-modifying program; Indirectly self-modifying code; Self-modification (computing); Indirect self-modification; Dynamic self-modifying code; Dynamic self-modification; Dynamically self-modifying code
In computer science, self-modifying code (SMC) is code that alters its own instructions while it is executing – usually to reduce the instruction path length and improve performance or simply to reduce otherwise repetitively similar code, thus simplifying maintenance. The term is usually only applied to code where the self-modification is intentional, not in situations where code accidentally modifies itself due to an error such as a buffer overflow.

Википедия

Microkernel

In computer science, a microkernel (often abbreviated as μ-kernel) is the near-minimum amount of software that can provide the mechanisms needed to implement an operating system (OS). These mechanisms include low-level address space management, thread management, and inter-process communication (IPC).

If the hardware provides multiple rings or CPU modes, the microkernel may be the only software executing at the most privileged level, which is generally referred to as supervisor or kernel mode. Traditional operating system functions, such as device drivers, protocol stacks and file systems, are typically removed from the microkernel itself and are instead run in user space.

In terms of the source code size, microkernels are often smaller than monolithic kernels. The MINIX 3 microkernel, for example, has only approximately 12,000 lines of code.